@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Poppins:wght@300;400;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background-color: #0d0221;
  color: #ffffff;
  text-align: center;
  scroll-behavior: smooth;
}
body::-webkit-scrollbar{
    display: none;
}
header {
  background-color: rgba(10, 10, 40, 1);
  padding: 15px 20px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}
nav {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}
.logo {
    height: 55px; /* Adjust height based on navbar */
    width: 55px; /* Maintain aspect ratio */
    background-image: url('logo.jpg');
background-size: cover; /* Cover the entire area */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent repeating the image */
background-color: rgba(0, 0, 0, 0.7);
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: #facc15;
  text-decoration: none;
  padding: 8px 14px;
  transition: 0.3s;
  font-size: 1.1em;
}
.nav-links a:hover {
  background: #facc15;
  color: #0d0221;
  border-radius: 5px;
}
.cta-button {
  background-color: #facc15;
  color: #0d0221;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: 0.3s;
  font-size: 1.1em;
}
.cta-button:hover {
  background-color: #ffb703;
}
.hero {
  padding: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  position: relative;
  margin: 0;
}
.video {
  position: absolute;
  width: 100vw;
  height: 100vw;
  z-index: -1;
  opacity: 0.6;
  /* transform: translateY(20px); */
}
.hero h1 {
  font-size: 3em;
  margin-bottom: 15px;
  font-family: "Cinzel", serif;
}
.hero p {
  font-size: 1.4em;
  margin-bottom: 20px;
}
section {
  padding: 90px 20px;
  margin: 0 auto;
}
section h2{
    font-size: 26px;
}

.about {
  border: #ffb703 2px solid;
  padding: 40px 30px;
  text-align: justify;
  background-color:rgba(243,177,9,0.1);
}

.about h2{
    text-align: center;
    margin-bottom: 20px;
}

.card {
    border-radius: 10px;
    width: 300px;
    height: 300px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}
.cards{
    display:flex;
    justify-content: space-evenly;
    margin-top:40px;
    margin-bottom: 50px;

}

.card1{
background-image: url('horoscope.jpg');
background-size: cover; /* Cover the entire area */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent repeating the image */
background-color: rgba(0, 0, 0, 0.7);
}
.card2{
background-image: url('tarot.jpg');
background-size: cover; /* Cover the entire area */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent repeating the image */
background-color: rgba(0, 0, 0, 0.7);
}
.card3{
background-image: url('numerology.jpg');
background-size: cover; /* Cover the entire area */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent repeating the image */
background-color: rgba(0, 0, 0, 0.7);
}
.card4{
background-image: url('carrer.jpg');
background-size: cover; /* Cover the entire area */
background-position: center; /* Center the image */
background-repeat: no-repeat; /* Prevent repeating the image */
background-color: rgba(0, 0, 0, 0.7);
}
.card:hover {
    transform: scale(1.05); /* Scale up when hering over the card */
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 15px;
    height: 100%;
    display:flex;
    align-items: flex-end;
    justify-content: center;
}

.card1 .card-title {
    font-size: 1.5em;
    /* margin-bottom: 10px; */
    color:black;
    background-color: #fff;
    /* text-shadow: 3px 3px 2px goldenrod; */
    padding: 5px;
    border-radius: 10px;
}
.card2 .card-title {
    font-size: 1.5em;
    /* margin-bottom: 10px; */
    color:black;
    background-color: #fff;
    padding: 5px;
    border-radius: 10px;
}
.card3 .card-title {
    font-size: 1.5em;
    /* margin-bottom: 10px; */
    color:black;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}


.card4 .card-title {
    font-size: 1.5em;
    /* margin-bottom: 10px; */
    color:black;
    background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
}

.data{
    display:flex;
    justify-content: space-evenly;
    background-color: #ffb703;
    padding: 30px 0;
    background: linear-gradient(gold, goldenrod);
}

.phead{
    font-size: 26px;
    font-weight: bold;
}
.ptext{
    font-size: 16px;
}


.services ul,
.testimonials ul {
  list-style: none;
  padding: 0;
}
.services li {
  background: rgba(250, 204, 21, 0.4);
  margin: 10px 0;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.2em;
}
.services li:hover{
    border: #ffb703 2px solid;
    box-sizing: border-box;
}
#services{
    padding-top: 110px;
    padding-bottom: 79px;
}

#testimonials h2{
    padding-top: 20px;
}


.testimonial-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 20px;
    text-align: center;
    border-left: 5px solid #ffcb00; /* Yellow left border for a pop of color */
    transition: .2s ease;
    margin-bottom: 15px;
}
.testimonial-card:hover{
    transform: translateY(-10px);

}

.testimonial-header {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.client-image {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid #ffcb00; /* Yellow border around the image */
}

.client-info h3 {
    font-size: 1.2em;
    color: #003366; /* Deep blue color */
}

.client-info p {
    font-size: 0.9em;
    color: #666;
}

.testimonial-text {
    font-style: italic;
    color: #003366; /* Deep blue color for the testimonial text */
    margin-bottom: 15px;
}

.astrologer-name {
    font-size: 0.9em;
    color: #ffcb00; /* Yellow color for astrologer's name */
    font-weight: bold;
}
.test{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 20px 10px;
    /* padding-top: 10px; */
}
.contact{
    padding:0 250px;
    margin-bottom: 100px;
}
.contact input,
.contact textarea {
  margin: 12px 0;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.contact button {
  padding: 12px;
  background-color: #facc15;
  color: #0d0221;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
  font-weight: bold;
}

footer {
  background-color: #080808;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 0.9em;
  color: #facc15;
}

footer a{
    color: rgb(231, 211, 211);
}

.footer{
    margin: 10px 0;
    font-size: 0.9em;

}
.social-heading{
    padding-right: 7px;
}
.links a{
    margin-right: 10px;
    margin-bottom: 5px;
}
.footer-container{
    display: flex;
    justify-content: space-around;

}
.social-icon img{
    width:40px;
    height: 40px;
}

